home *** CD-ROM | disk | FTP | other *** search
/ EnigmA Amiga Run 1999 March / EnigmA AMIGA RUN 35 (1999)(G.R. Edizioni)(IT)[!][issue 1999-03].iso / earcd / devel / libx11 / include / x11 / composite.h < prev    next >
C/C++ Source or Header  |  1999-01-01  |  2KB  |  78 lines

  1. /* $XConsortium: Composite.h,v 1.12 91/10/24 13:19:40 converse Exp $ */
  2.  
  3. /***********************************************************
  4. Copyright 1987, 1988 by Digital Equipment Corporation, Maynard, Massachusetts,
  5. and the Massachusetts Institute of Technology, Cambridge, Massachusetts.
  6.  
  7.                         All Rights Reserved
  8.  
  9. Permission to use, copy, modify, and distribute this software and its 
  10. documentation for any purpose and without fee is hereby granted, 
  11. provided that the above copyright notice appear in all copies and that
  12. both that copyright notice and this permission notice appear in 
  13. supporting documentation, and that the names of Digital or MIT not be
  14. used in advertising or publicity pertaining to distribution of the
  15. software without specific, written prior permission.  
  16.  
  17. DIGITAL DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, INCLUDING
  18. ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO EVENT SHALL
  19. DIGITAL BE LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR
  20. ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS,
  21. WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION,
  22. ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS
  23. SOFTWARE.
  24.  
  25. ******************************************************************/
  26.  
  27. #ifndef _XtComposite_h
  28. #define _XtComposite_h
  29.  
  30. typedef struct _CompositeClassRec *CompositeWidgetClass;
  31.  
  32. typedef Cardinal (*XtOrderProc)(
  33. #if NeedFunctionPrototypes
  34.     Widget     /* child */
  35. #endif
  36. );
  37.  
  38. _XFUNCPROTOBEGIN
  39.  
  40. #ifndef MAKELIBRARY
  41.  
  42. extern void XtManageChildren(
  43. #if NeedFunctionPrototypes
  44.     WidgetList         /* children */,
  45.     Cardinal         /* num_children */
  46. #endif
  47. );
  48.  
  49. extern void XtManageChild(
  50. #if NeedFunctionPrototypes
  51.     Widget         /* child */
  52. #endif
  53. );
  54.  
  55. extern void XtUnmanageChildren(
  56. #if NeedFunctionPrototypes
  57.     WidgetList         /* children */,
  58.     Cardinal         /* num_children */
  59. #endif
  60. );
  61.  
  62. extern void XtUnmanageChild(
  63. #if NeedFunctionPrototypes
  64.     Widget         /* child */
  65. #endif
  66. );
  67.  
  68. #endif
  69.  
  70. _XFUNCPROTOEND
  71.  
  72. #ifndef COMPOSITE
  73. externalref WidgetClass compositeWidgetClass;
  74. #endif
  75.  
  76. #endif /* _XtComposite_h */
  77. /* DON'T ADD STUFF AFTER THIS #endif */
  78.